home *** CD-ROM | disk | FTP | other *** search
- global gTitle, mycddrive, mysystem, gBigScreen, gdoit
-
- on mouseDown
- case gTitle of
- "cmrp":
- gdoit = "do"
- "lma":
- gdoit = "do"
- "toca":
- gdoit = "do"
- otherwise:
- gdoit = "dont"
- end case
- if gdoit = "do" then
- cursor(4)
- if gTitle = VOID then
- abort()
- cursor(0)
- end if
- case gTitle of
- "cmrp":
- gBigScreen = "GUY"
- "lma":
- gBigScreen = "SIMON"
- "toca":
- gBigScreen = "GAVIN"
- end case
- if the machineType = 256 then
- if mycddrive = VOID then
- driveList = DrivesToList()
- repeat with X = 1 to count(driveList)
- driveName = getAt(driveList, X)
- Y = DriveIsCDROM(driveName)
- if Y = 0 then
- mycddrive = driveName
- end if
- end repeat
- end if
- if mysystem = VOID then
- dlist = DrivesToList()
- repeat with X = 1 to count(dlist)
- driveName = getAt(dlist, X)
- t = driveName & "\Program Files"
- b = DirectoryExists(t)
- if b = 0 then
- mysystem = driveName
- exit repeat
- end if
- end repeat
- end if
- u = DriveFreeSpace(mysystem)
- if u < 40960 then
- alert("Drive" && mysystem && "has less than 4 MB, you may need to free up disc space")
- cursor(0)
- end if
- mysource = the moviePath & "data\" & gTitle & "\download\" & gBigScreen & "D.tif"
- mydest = mysystem
- retVal = FileSaveAsDialog(mydest, gBigScreen & ".tif", EMPTY, EMPTY)
- if retVal <> EMPTY then
- CopyFile(mysource, retVal)
- end if
- cursor(0)
- else
- if mycddrive = VOID then
- driveList = DrivesToList()
- repeat with X = 1 to count(driveList)
- driveName = getAt(driveList, X)
- Y = DriveIsCDROM(driveName)
- if Y = 0 then
- mycddrive = driveName
- end if
- end repeat
- end if
- if mysystem = VOID then
- dlist = DrivesToList()
- repeat with X = 1 to count(dlist)
- driveName = getAt(dlist, X)
- t = driveName & ":system folder"
- b = DirectoryExists(t)
- if b = 0 then
- mysystem = driveName
- exit repeat
- end if
- end repeat
- end if
- u = DriveFreeSpace(mysystem)
- if u < 40960 then
- alert("Drive" && mysystem && "has less than 4 MB, you may need to free up disc space")
- cursor(0)
- end if
- mysource = the moviePath & "data:" & gTitle & ":download:" & gBigScreen & "D.tif"
- mydest = mysystem
- retVal = FileSaveAsDialog(mydest, gBigScreen & ".tif", EMPTY)
- if retVal <> EMPTY then
- CopyFile(mysource, retVal)
- end if
- cursor(0)
- end if
- else
- exit
- end if
- end
-